All Questions
Tagged with testingdevelopment-process
44 questions
0votes
0answers
57views
Database versioning when testing layered design
Let's say there are two layers of an application: Business logic layer Data access layer Assume integration tests need to be written also for the Business logic layer. Alas tests that run against ...
-1votes
1answer
349views
Best way to keep development and testing in synch
We have 1 frontend developer and 2 backend developers and 1 QA. QA is responsible for writing the end-to-end tests using Cypress. FE developer writes the unit tests. Backend developers write the unit ...
-2votes
1answer
459views
What should be the workflow for test management in JIRA
We are using Jira to track all our tickets and confluence for documentation. We intend to document the test cases covered on Confluence. Here are a couple requirements: Consider a development ticket ...
0votes
2answers
743views
Who should describe the testing procedure of a bug?
I used to work for a software development company, and there they had following way of solving bugs and the according testing: The bug ticket is analysed by the developer. The developer solves the ...
-2votes
2answers
127views
Is QA/QC more related to proprietary softwares?
I'm not a software engineer, but I like coding for myself. Thus, I don't know what goes in IT companies. Keeping the amount I spend on GitHub, I never heard of the term QA/QC in regards to open ...
0votes
1answer
266views
Git branching model for teams with develop, test and deploy phases
A developed piece of code goes these phases in our team: Developers write the code Then they send it to testers If tests pass, then testers send the change/new feature/bugfix to operations team for ...
6votes
2answers
912views
Should I be unit testing during prototyping/preparing for beta?
I am developing a web application for an industry that desperately needs it. Working with a consultant in the industry, I’ve rapidly developed a prototype in 2 months that we will be testing with a ...
9votes
4answers
691views
What's the practical development cycle of a large project when a full build is prohibitively long
Projects like webkit, Linux kernel and many others take over ten minutes if not hours for a full build. What's the practical development cycle for these large projects? Specifically, how does a ...
6votes
3answers
4kviews
Do we need a separated branch for fixing bugs raised during the testing phase?
Before release a new version of the software, which is a web application, my company creates a release branch. The QA team tests that branch and reports some issues. Should developers commit the ...
3votes
1answer
365views
In c# how do people make complex functions
Hi I'm working on a c# MVC code first project. I've started the project and have created the Models, database frontend etc. Now my attention has come to writing something that can read an excel ...
0votes
4answers
2kviews
Are “Hard to find bugs” the responsibility of the developer or the tester?
May be it seems an open question (or non-constructive according to stackoverflow standards) .... but I am asking if there's something rigid according to Software process standards addressing this ...
-1votes
1answer
62views
New project development & git guidlines and hints [closed]
We are two senior students and we want to develop an app. Although we dont have experience on using git & github. Our app will consist of a server handling requests with a mongoDB database. The ...
1vote
1answer
1kviews
What is the proper infrastructure and release cycle for developing and testing an application? [closed]
I am developing a web application for my coworkers, and from a little management app it is becoming a more and intense large project that is involving more people as I go. I am pretty sure my boss ...
32votes
6answers
6kviews
How do I test a system where the objects are difficult to mock?
I am working with the following system: Network Data Feed -> Third Party Nio Library -> My Objects via adapter pattern We recently had an issue where I updated the version of the library I was ...
2votes
1answer
226views
Code review and testing in the process
I am thinking about the software development process of my team, more specifically, I am thinking about tests and code review into our development process. I came to the conclusion that, in order to ...